home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / bbs_door / olsq_11.zip / STOCK.CFG < prev    next >
Text File  |  1996-01-31  |  3KB  |  82 lines

  1. C:\WC4\WCWORK\NODE%WCNODEID%\DOOR.SYS
  2. The Parole Board BBS
  3. Dennis
  4. Maidon
  5.  
  6. '=============================================================================
  7. 'The door only reads the first four lines in this file.  You may leave
  8. any comments that you wish after line 4
  9.  
  10.  
  11. Line 1  Path and name of the user drop file.  The door supports
  12.         DOOR.SYS, USERINFO.DAT, CALLINFO.DAT, PCBOARD.SYS, USERS.SYS,
  13.         TRIBBS.SYS, GTUSER.BBS, DORINFOx.DEF and SFDOORS.DAT.  make sure
  14.         that you enter the correct path so that the door can locate the
  15.         file.
  16.  
  17. Line 2  BBS Name.  This must be spelled exactly as the registration key
  18.         is computed.
  19.  
  20. Line 3  SysOp's first name.
  21.  
  22. Line 4  SysOp's last name
  23.  
  24.  
  25. Fossil Driver Support
  26. ---------------------
  27. DoorFrame supports the use of Fossil drivers.  To tell your Door to use the
  28. Fossil driver instead of the standard COM ports, just put /FD on the command
  29. line when running the door. For example:
  30.      MYDOOR MYDOOR.CFG /FD
  31. indicates that a Fossil driver is present and should be used. If no Fossil
  32. driver is detected, DoorFrame will print a message to that effect and exit
  33. the door gracefully.
  34.  
  35. Environment Variables
  36. ---------------------
  37. DoorFrame supports COM 1-4 on the standard IRQ's - COM1/COM3 = IRQ4 and
  38. COM2/COM4 = IRQ3. If you wish to use a non-standard IRQ, add the IRQ
  39. number after the configuration filename. Let's assume your Door is
  40. called FOOBAR and you want to use COM1 and IRQ5. The command line
  41. passed to your Door would be:
  42.     FOOBAR FOOBAR.CFG /5  or
  43.     FOOBAR FOOBAR.CFG /%IRQ%  for the environment variable.
  44. The /5 tells DoorFrame to use IRQ5 rather than the standard IRQ4 that
  45. is normally used with COM1. No /x parameter is needed for the standard IRQ's.
  46.  
  47. When specifying the location of the system file on line 1 of the doors .CFG
  48. file, you may use the environment variables %pcbdrive%, %pcbdir%, %pcbnode%,
  49. and %wcnodeid%. Some examples:
  50.  PCBoard: 
  51.    USERS.SYS in C:\PCB           - %pcbdrive%%pcbdir%\USERS.SYS
  52.    USERS.SYS in C:\PCB\NODE1     - %pcbdrive%%pcbdir%\NODE%pcbnode%\USERS.SYS
  53.  
  54.  Wildcat!:
  55.    USERINFO.DAT in C:\WC\NODE1   - C:\WC\NODE%wcnodeid%
  56.  
  57. Non-PCBoard systems may use the PCB environment variables by setting them
  58. in either AUTOEXEC.BAT or in the batch that runs the door. For example:
  59.  SET PCBDRIVE=C:
  60.  SET PCBDIR=\BBSDIR
  61.  SET PCBNODE=1
  62.  
  63.  Some examples:
  64.     PCBoard: If USERS.SYS is located in C:\PCB\NODE1 directory, 
  65.        %pcbdrive%%pcbdir%\NODE%pcbnode%\USERS.SYS
  66.     Wildcat!: USERINFO.DAT located in C:\WC\NODE3 directory,
  67.        C:\WC\NODE%wcnodeid%\USERINFO.DAT
  68.     or if you SET the %pcbdrive% and %pcbdir% variables via the batch,
  69.        %pcbdrive%%pcbdir%\NODE%wcnodeid%\USERINFO.DAT
  70.  
  71. 486DX CPU's
  72. -----------
  73. The math coprocessor in 486DX CPUs cannot handle floating point math which
  74. all MicroSoft Basic's use. This can show up as an ERROR 5, a keyboard 
  75. timeout, etc.
  76.  
  77. Fortunately there is an easy fix for this problem. Simply place the following
  78. line in the AUTOEXEC.BAT file:
  79.  
  80. SET NO87=ON
  81.  
  82.